455fa63b2a5a1937629c1bb5844ae045cd4f5074,xwiki-platform-web/wysiwyg/src/main/java/com/xpn/xwiki/wysiwyg/client/plugin/text/TextPlugin.java,TextPlugin,update,#,297

Before Change


        if (strikeThrough != null) {
            strikeThrough.setDown(getTextArea().getCommandManager().isExecuted(Command.STRIKE_THROUGH));
        }
        if (teletype != null) {
            teletype.setDown(getTextArea().getCommandManager().isExecuted(Command.TELETYPE));
        }
    }
}

After Change


        update(italic, Command.ITALIC);
        update(underline, Command.UNDERLINE);
        update(strikeThrough, Command.STRIKE_THROUGH);
        update(teletype, Command.TELETYPE);
    }

    /**